home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / Think-Pascal-7.0.cpt / THINK Pascal Interfaces / Menus.p < prev    next >
Encoding:
Text File  |  1991-04-05  |  691 b   |  35 lines  |  [TEXT/PJMM]

  1. {    This file has been processed by The THINK Pascal Source Converter, v1.1.    }
  2.  
  3. {}
  4. {Created: Sunday, January 6, 1991 at 10:48 PM}
  5. {    Menus.p}
  6. {    Pascal Interface to the Macintosh Libraries}
  7. {}
  8. {        Copyright Apple Computer, Inc.    1985-1990}
  9. {        All rights reserved}
  10. {}
  11.  
  12.  
  13.  
  14. {    RMS    4/3/91        Modified to exclude declarations already in the THINK Pascal built-in interfaces    }
  15.  
  16.  
  17.  
  18. unit Menus;
  19. interface
  20.     uses
  21.         Types, Quickdraw;
  22.  
  23.     type
  24.         MenuCRsrcPtr = ^MenuCRsrc;
  25.         MenuCRsrcHandle = ^MenuCRsrcPtr;
  26.         MenuCRsrc = record
  27.                 numEntries: INTEGER;                {number of entries}
  28.                 mcEntryRecs: MCTable;               {ARRAY [1..numEntries] of MCEntry}
  29.             end;
  30.  
  31.  
  32. implementation
  33. end.
  34.  
  35.